home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / tools / gcc / libnixv1_0.lha / gnu / libnix-sources.lha / sources / headers / pool.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-04-20  |  374 b   |  18 lines

  1. #include <exec/lists.h>
  2. #include <exec/memory.h>
  3. #include <exec/execbase.h>
  4. #include <clib/alib_protos.h>
  5. #include <proto/exec.h>
  6.  
  7. /*     our PRIVATE! memory pool structure 
  8.    (_NOT_ compatible with original amiga.lib!) */
  9.  
  10. typedef struct Pool
  11. {
  12.   struct MinList PuddleList;
  13.   struct MinList ThreshList;
  14.   ULONG MemoryFlags;
  15.   ULONG PuddleSize;
  16.   ULONG ThreshSize;
  17. } POOL;
  18.